home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / sun4.md / configure < prev    next >
Text File  |  1992-06-09  |  20KB  |  735 lines

  1. #!/bin/sh
  2.  
  3. # Configuration script
  4. #   Copyright (C) 1988, 1990, 1991, 1992 Free Software Foundation, Inc.
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. # Please email any bugs, comments, and/or additions to this file to:
  19. # configure@cygnus.com
  20.  
  21. # This file was written by K. Richard Pixley.
  22.  
  23. #
  24. # Shell script to create proper links to machine-dependent files in
  25. # preparation for compilation.
  26. #
  27. # If configure succeeds, it leaves its status in config.status.
  28. # If configure fails after disturbing the status quo, 
  29. #     config.status is removed.
  30. #
  31.  
  32. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh $0 $argv; kill $$)
  33.  
  34. remove=rm
  35. hard_link=ln
  36. symbolic_link='ln -s'
  37.  
  38. #for Test
  39. #remove="echo rm"
  40. #hard_link="echo ln"
  41. #symbolic_link="echo ln -s"
  42.  
  43. # clear some things potentially inherited from environment.
  44.  
  45. Makefile=Makefile
  46. Makefile_in=Makefile.in
  47. arguments=$*
  48. configdirs=
  49. exec_prefix=
  50. exec_prefixoption=
  51. fatal=
  52. floating_point=default
  53. gas=default
  54. host_alias=
  55. host_makefile_frag=
  56. next_host=
  57. next_prefix=
  58. next_site=
  59. next_srcdir=
  60. next_target=
  61. next_tmpdir=
  62. norecursion=
  63. removing=
  64. prefix=/usr/local
  65. progname=
  66. program_prefix=
  67. program_prefix_option=
  68. silent=
  69. site=
  70. site_option=
  71. site_makefile_frag=
  72. srcdir=
  73. srctrigger=
  74. target_alias=
  75. target_makefile_frag=
  76. undefinedargs=
  77. verbose=
  78. version="$Revision: 1.110 $"
  79. x11=default
  80.  
  81. NO_EDIT="This file was generated automatically by configure.  Do not edit."
  82.  
  83. ## this is a little touchy and won't always work, but...
  84. ##
  85. ## if the argv[0] starts with a slash then it is an absolute name that can (and
  86. ## must) be used as is.
  87. ##
  88. ## otherwise, if argv[0] has no slash in it, we can assume that it is on the
  89. ## path.  Since PATH might include "." we also add `pwd` to the end of PATH.
  90. ##
  91.  
  92. PWD=`pwd`
  93. progname=$0
  94.  
  95. case "${progname}" in
  96. /*) ;;
  97. */*) ;;
  98. *)
  99.     PATH=$PATH:${PWD} ; export PATH
  100.     ;;
  101. esac
  102.  
  103. for arg in $*;
  104. do
  105.     # handle things that might have args following as separate words
  106.     if [ -n "${next_prefix}" ] ; then prefix=${arg} ; prefixoption="-prefix=${prefix}" ; next_prefix=
  107.     elif [ -n "${next_exec_prefix}" ] ; then
  108.         exec_prefix=${arg}
  109.         exec_prefixoption="-exec_prefix=${exec_prefix}"
  110.         next_exec_prefix=
  111.     elif [ -n "${next_site}" ] ; then site=${arg} ; site_option=-site=${site} ; next_site=
  112.     # remove any possible trailing slash from srcdir.  See note below.
  113.     elif [ -n "${next_srcdir}" ] ; then srcdir=`echo ${arg} | sed -e 's:/$::'` ; next_srcdir=
  114.     elif [ -n "${next_program_prefix}" ] ; then
  115.         program_prefix=${arg}
  116.         program_prefixoption="-program_prefix=${program_prefix}"
  117.         next_program_prefix=
  118.     elif [ -n "${next_target}" ] ; then
  119.         next_target=
  120.         case "${target_alias}" in
  121.         "")
  122.             target_alias="${arg}"
  123.             ;;
  124.         *)
  125.             echo '***' Can only configure for one target at a time.  1>&2
  126.             fatal=yes
  127.             ;;
  128.         esac
  129.     elif [ -n "${next_tmpdir}" ] ; then
  130.         next_tmpdir=
  131.         tmpdiroption="--tmpdir=${arg}"
  132.         TMPDIR=${arg}
  133.  
  134.     else
  135.         case ${arg} in
  136.         -exec_prefix=* | --exec_prefix=* | --exec_prefi=* | --exec_pref=* | --exec_pre=* | --exec_pr=* | --exec_p=* | --exec_=* | --exec=* | --exe=* | --ex=* | --e=*)
  137.             exec_prefix=`echo ${arg} | sed 's/^[-a-z_]*=//'`
  138.             exec_prefixoption=${arg}
  139.             ;;
  140.         -exec_prefix | --exec_prefix | --exec_prefi | --exec_pref | --exec_pre | --exec_pr | --exec_p | --exec_ | --exec | --exe | --ex | --e)
  141.             next_exec_prefix=yes
  142.             ;;
  143.         -gas | --g*)
  144.             gas=yes
  145.             ;;
  146.         -help | --he*)
  147.             fatal=true
  148.             ;;
  149.         -host=* | --host=* | --hos=* | --ho=*)
  150.             case "${host_alias}" in
  151.             "")
  152.                 host_alias="`echo ${arg} | sed 's/^[-a-z]*=//'`"
  153.                 ;;
  154.             *)
  155.                 echo '***' Can only configure for one host at a time.  1>&2
  156.                 fatal=yes
  157.                 ;;
  158.             esac
  159.             ;;
  160.         -nfp | --nf*)
  161.             floating_point=no
  162.             ;;
  163.         -norecursion | --no*)
  164.             norecursion=true
  165.             ;;
  166.         -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=*)
  167.             prefix=`echo ${arg} | sed 's/^[-a-z]*=//'`
  168.             prefixoption=${arg}
  169.             ;;
  170.         -prefix | --prefix | --prefi | --pref | --pre)
  171.             next_prefix=yes
  172.             ;;
  173.         -rm | --rm) removing=${arg} ;;
  174.         -program_prefix=* | --program_prefix=* | --program_prefi=* | --program_pref=* | --program_pre=* | --program_pr=* | --program_p=* | --program_=* | --program=* | --progra=* | --progr=* | --prog=* | --pro=*)
  175.             program_prefix=`echo ${arg} | sed 's/^[-a-z]*=//'`
  176.             program_prefixoption=${arg}
  177.             ;;
  178.         -program_prefix | --program_prefix | --program_prefi | --program_pref | --program_pre | --program_pr | --program_p | --program_ | --program | --progra | --progr | --prog | --pro)
  179.             next_program_prefix=yes
  180.             ;;
  181.         -s | -silent | --silent | --silen | --sile | --sil)
  182.             silent=true
  183.             arguments=`echo ${arguments} | sed "s:${arg}::"`
  184.             ;;
  185.         -site=* | --site=* | --sit=* | --si=*)
  186.             site_option=${arg}
  187.             site=`echo ${arg} | sed 's/^[-a-z]*=//'`
  188.             ;;
  189.         -site | --site | --sit)
  190.             next_site=yes
  191.             ;;
  192.         # remove trailing slashes.  Otherwise, when the file name gets
  193.         # bolted into an object file as debug info, it has two slashes in
  194.         # it.  Ordinarily this is ok, but emacs takes double slash to
  195.         # mean "forget the first part".
  196.         -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  197.             srcdir=`echo ${arg} | sed 's/^[-a-z]*=//' | sed -e 's:/$::'`
  198.             ;;
  199.         -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  200.             next_srcdir=yes
  201.             ;;
  202.         -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=*)
  203.             case "${target_alias}" in
  204.             "") target_alias="`echo ${arg} | sed 's/^[-a-z]*=//'`" ;;
  205.             *)
  206.                 echo '***' Can only configure for one target at a time.  1>&2
  207.                 fatal=yes
  208.                 ;;
  209.             esac
  210.             ;;
  211.         -target | --target | --targe | --targ | --tar | --ta)
  212.             next_target=yes
  213.             ;;
  214.         -tmpdir=* | --tmpdir=* | --tmpdi=* | --tmpd=* | --tmp=* | --tm=*)
  215.             tmpdiroption=${arg}
  216.             TMPDIR=`echo ${arg} | sed 's/^[-a-z]*=//'`
  217.             ;;
  218.         -tmpdir | --tmpdir | --tmpdi | --tmpd | --tmp | --tm)
  219.             next_tmpdir=yes
  220.             ;;
  221.         -v | -verbose | --v)
  222.             verbose=${arg}
  223.             ;;
  224.         -version | -V | --version | --V)
  225.             echo "This is Cygnus Configure version" `echo ${version} | sed 's/[ $:]//g'`
  226.             exit 0
  227.             ;;
  228.         -x | --x) ;;
  229.         -* | --*)
  230.             (echo ;
  231.             echo "Unrecognized option: \"${arg}\"". ;
  232.             echo) 1>&2
  233.             fatal=true
  234.             ;;
  235.         *)
  236.             case "${undefs}" in
  237.             "")
  238.                 undefs="${arg}"
  239.                 ;;
  240.             *)
  241.                 echo '***' Can only configure for one host and one target at a time.  1>&2
  242.                 fatal=yes
  243.                 ;;
  244.             esac
  245.             ;;
  246.         esac
  247.     fi
  248. done
  249.  
  250. # process host and target
  251. case "${fatal}" in
  252. "")
  253. #    # Complain if an arg is missing
  254. #    if [ -z "${host_alias}" ] ; then
  255. #        (echo ;
  256. #        echo "configure: No HOST specified." ;
  257. #        echo) 1>&2
  258. #        fatal=true
  259. #    fi
  260.  
  261. ### This is a bit twisted.
  262. ### * if all three are specified, this is an error.
  263. ### * if we have neither hosts, nor unadorned args, this is an error.
  264. ### * if no hosts are specified, then the unadorned args are hosts, but if
  265. ### there were none, this is an error.
  266. ### * if no targets are specified, then the unadorned args are targets, but if
  267. ### there were no unadorned args, then the hosts are also targets.
  268.  
  269.     if [ -n "${host_alias}" -a -n "${target_alias}" -a -n "${undefs}" ] ; then
  270.         echo '***' Can only configure for one host and one target at a time.  1>&2
  271.         fatal=yes
  272.     elif [ -z "${host_alias}" -a -z "${undefs}" ] ; then
  273.         echo '***' You must tell me for which host you want to configure.  1>&2
  274.         fatal=yes
  275.     else
  276.         case "${host_alias}" in
  277.         "") host_alias=${undefs} ;;
  278.         *) ;;
  279.         esac
  280.  
  281.         case "${target_alias}" in
  282.         "")
  283.             case "${undefs}" in
  284.             "")    target_alias=${host_alias} ;;
  285.             *)    target_alias=${undefs} ;;
  286.             esac
  287.             ;;
  288.         *) ;;
  289.         esac
  290.     fi
  291.     ;;
  292. *) ;;
  293. esac
  294.  
  295. if [ -n "${fatal}" -o "${host_alias}" = "help" ] ; then
  296.     (echo "Usage: configure HOST" ;
  297.     echo ;
  298.     echo "Options: [defaults in brackets]" ;
  299.     echo " -exec_prefix=MYDIR    configure for installation of host dependent files into MYDIR. [\"/usr/local\"]" ;
  300.     echo " -gas            configure the compilers for use with gas. [native as]" ;
  301.     echo " -help            print this message. [normal config]" ;
  302.     echo " -lang=LANG        configure to build LANG. [gcc]" ;
  303.     echo " -nfp            configure the compilers default to soft floating point. [hard float]" ;
  304.     echo " -norecursion        configure this directory only. [recurse]" ;
  305.     echo " -prefix=MYDIR        configure for installation of host dependent files into MYDIR. [\"/usr/local\"]" ;
  306.     echo " -program_prefix=FOO    install programs with FOO prepended to their names. [ \"\" ]" ;
  307.     echo " -site=SITE        configure with site specific makefile for SITE" ;
  308.     echo " -srcdir=DIR        find the sources in DIR. [\".\" or \"..\"]" ;
  309.     echo " -target=TARGET        configure for TARGET.  [TARGET = HOST]" ;
  310.     echo " -tmpdir=TMPDIR        create temporary files in TMPDIR.  [ TMPDIR = \"/tmp\" ]" ;
  311.     echo ;
  312.     echo "Where HOST and TARGET are something like \"vax\", \"sun3\", \"encore\", etc." ;
  313.     ) 1>&2
  314.  
  315.     if [ -r config.status ] ; then
  316.         cat config.status
  317.     fi
  318.  
  319.     exit 1
  320. fi
  321.  
  322. configsub=`echo ${progname} | sed 's/configure$/config.sub/'`
  323.  
  324. if ${configsub} `echo ${host_alias} | sed -e 's/ .*//'` >/dev/null 2>&1 ; then
  325.     true
  326. else
  327.     echo '***' cannot find config.sub.  1>&2
  328.     exit 1
  329. fi
  330.  
  331. case "${srcdir}" in
  332. "")
  333.     if [ -r configure.in ] ; then
  334.         srcdir=.
  335.     else
  336.         if [ -r ${progname}.in ] ; then
  337.             srcdir=`echo ${progname} | sed 's:/configure$::'`
  338.         else
  339.             echo '***' "Can't find configure.in.  Try using -srcdir=some_dir"  1>&2
  340.             exit 1
  341.         fi
  342.     fi
  343.     ;;
  344. *) ;;
  345. esac
  346.  
  347. ### warn about some conflicting configurations.
  348.  
  349. case "${srcdir}" in
  350. ".") ;;
  351. *)
  352.     if [ -f ${srcdir}/config.status ] ; then
  353.         echo '***' Cannot configure here in \"${PWD}\" when \"${srcdir}\" is currently configured. 1>&2
  354.         exit 1
  355.     fi
  356. esac
  357.  
  358. # default exec_prefix
  359. case "${exec_prefix}" in
  360. "") exec_prefix="\$(prefix)" ;;
  361. *) ;;
  362. esac
  363.  
  364. ### break up ${srcdir}/configure.in.
  365. case "`grep '^# per\-host:' ${srcdir}/configure.in`" in
  366. "")
  367.     echo '***' ${srcdir}/configure.in has no "per-host:" line. 1>&2
  368.     exit 1
  369.     ;;
  370. *) ;;
  371. esac
  372.  
  373. case "`grep '^# per\-target:' ${srcdir}/configure.in`" in
  374. "")
  375.     echo '***' ${srcdir}/configure.in has no "per-target:" line. 1>&2
  376.     exit 1
  377.     ;;
  378. *) ;;
  379. esac
  380.  
  381. case "${TMPDIR}" in
  382. "") TMPDIR=/tmp ; export TMPDIR ;;
  383. *) ;;
  384. esac
  385.  
  386. # keep this filename short for &%*%$*# 14 char file names
  387. tmpfile=${TMPDIR}/cONf$$
  388. trap "rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos" 0
  389.  
  390. # split ${srcdir}/configure.in into common, per-host, per-target,
  391. # and post-target parts.  Post-target is optional.
  392. sed -e '/^# per\-host:/,$d' ${srcdir}/configure.in > ${tmpfile}.com
  393. sed -e '1,/^# per\-host:/d' -e '/^# per\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.hst
  394. if grep '^# post-target:' ${srcdir}/configure.in >/dev/null ; then
  395.   sed -e '1,/^# per\-target:/d' -e '/^# post\-target:/,$d' ${srcdir}/configure.in > ${tmpfile}.tgt
  396.   sed -e '1,/^# post\-target:/d' ${srcdir}/configure.in > ${tmpfile}.pos
  397. else
  398.   sed -e '1,/^# per\-target:/d' ${srcdir}/configure.in > ${tmpfile}.tgt
  399.   echo >${tmpfile}.pos
  400. fi
  401.  
  402. ### do common part of configure.in
  403.  
  404. . ${tmpfile}.com
  405.  
  406. # some sanity checks on configure.in
  407. case "${srctrigger}" in
  408. "")
  409.     echo '***' srctrigger not set in ${PWD}/configure.in.  1>&2
  410.     exit 1
  411.     ;;
  412. *) ;;
  413. esac
  414.  
  415. result=`${configsub} ${host_alias}`
  416. host_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  417. host_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  418. host_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  419. host=${host_cpu}-${host_vendor}-${host_os}
  420.  
  421. . ${tmpfile}.hst
  422.  
  423. result=`${configsub} ${target_alias}`
  424. target_cpu=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'`
  425. target_vendor=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'`
  426. target_os=`echo $result | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'`
  427. target=${target_cpu}-${target_vendor}-${target_os}
  428.  
  429. . ${tmpfile}.tgt
  430.  
  431. # Find the source files, if location was not specified.
  432. case "${srcdir}" in
  433. "")
  434.     srcdirdefaulted=1
  435.     srcdir=.
  436.     if [ ! -r ${srctrigger} ] ; then
  437.         srcdir=..
  438.     fi
  439.     ;;
  440. *) ;;
  441. esac
  442.  
  443. if [ ! -r ${srcdir}/${srctrigger} ] ; then
  444.     case "${srcdirdefaulted}" in
  445.     "") echo '***' "${progname}: Can't find ${srcname} sources in ${PWD}/${srcdir}" 1>&2 ;;
  446.     *)  echo '***' "${progname}: Can't find ${srcname} sources in ${PWD}/. or ${PWD}/.." 1>&2 ;;
  447.     esac
  448.  
  449.     echo '***' \(At least ${srctrigger} is missing.\) 1>&2
  450.     exit 1
  451. fi
  452.  
  453. case "${removing}" in
  454. "")
  455.     # Set up the list of links to be made.
  456.     # ${links} is the list of link names, and ${files} is the list of names to link to.
  457.  
  458.     # Make the links.
  459.     configlinks="${links}"
  460.     while [ -n "${files}" ] ; do
  461.         # set file to car of files, files to cdr of files
  462.         set ${files}; file=$1; shift; files=$*
  463.         set ${links}; link=$1; shift; links=$*
  464.  
  465.         if [ ! -r ${srcdir}/${file} ] ; then
  466.             echo '***' "${progname}: cannot create a link \"${link}\"," 1>&2
  467.             echo '***' "since the file \"${file}\" does not exist." 1>&2
  468.             exit 1
  469.         fi
  470.  
  471.         ${remove} -f ${link}
  472.         rm -f config.status
  473.         # Make a symlink if possible, otherwise try a hard link
  474.         ${symbolic_link} ${srcdir}/${file} ${link} 2>/dev/null || ${hard_link} ${srcdir}/${file} ${link}
  475.  
  476.         if [ ! -r ${link} ] ; then
  477.             echo '***' "${progname}: unable to link \"${link}\" to \"${srcdir}/${file}\"." 1>&2
  478.             exit 1
  479.         fi
  480.  
  481.         case "${verbose}" in
  482.         "") ;;
  483.         *)  echo "Linked \"${link}\" to \"${srcdir}/${file}\"." ;;
  484.         esac
  485.     done
  486.  
  487.     # Create a .gdbinit file which runs the one in srcdir
  488.     # and tells GDB to look there for source files.
  489.  
  490.     if [ -r ${srcdir}/.gdbinit ] ; then
  491.         case ${srcdir} in
  492.         .)
  493.             ;;
  494.         *) cat > .gdbinit <<EOF
  495. # ${NO_EDIT} > .gdbinit
  496. dir .
  497. dir ${srcdir}
  498. source ${srcdir}/.gdbinit
  499. EOF
  500.             ;;
  501.         esac
  502.     fi
  503.  
  504.     # Install a makefile, and make it set VPATH
  505.     # if necessary so that the sources are found.
  506.     # Also change its value of srcdir.
  507.     # NOTE: Makefile generation constitutes the majority of the time in configure.  Hence, this section has
  508.     # been somewhat optimized and is perhaps a bit twisty.
  509.  
  510.     # code is order so as to try to sed the smallest input files we know.
  511.  
  512.     # the three makefile fragments MUST end up in the resulting Makefile in this order: target, host, and site.
  513.     # so do these separately because I don't trust the order of sed -e expressions.
  514.  
  515.     # Conditionalize for this site from "Makefile.in" (or whatever it's called) into Makefile.tem
  516.     case "${site}" in
  517.     "") cp ${srcdir}/${Makefile_in} Makefile.tem ;;
  518.     *)
  519.         site_makefile_frag=${srcdir}/config/ms-${site}
  520.  
  521.         if [ -f ${site_makefile_frag} ] ; then
  522.             sed -e "/^####/  r ${site_makefile_frag}" ${srcdir}/${Makefile_in} \
  523.                 > Makefile.tem
  524.         else
  525.             cp ${srcdir}/${Makefile_in} Makefile.tem
  526.             site_makefile_frag=
  527.         fi
  528.         ;;
  529.     esac
  530.     # working copy now in Makefile.tem
  531.  
  532.     # Conditionalize the makefile for this host.
  533.     case "${host_makefile_frag}" in
  534.     "") mv Makefile.tem ${Makefile} ;;
  535.     *)
  536.         host_makefile_frag=${srcdir}/${host_makefile_frag}
  537.         if [ -f ${host_makefile_frag} ] ; then
  538.             sed -e "/^####/  r ${host_makefile_frag}" Makefile.tem > ${Makefile}
  539.         else
  540.             echo '***' Expected host makefile fragment \"${host_makefile_frag}\" 1>&2
  541.             echo '***' is missing in ${PWD}. 1>&2
  542.             mv Makefile.tem ${Makefile}
  543.         fi
  544.     esac
  545.     # working copy now in ${Makefile}
  546.  
  547.     # Conditionalize the makefile for this target.
  548.     case "${target_makefile_frag}" in
  549.     "") mv ${Makefile} Makefile.tem ;;
  550.     *)
  551.         target_makefile_frag=${srcdir}/${target_makefile_frag}
  552.         if [ -f ${target_makefile_frag} ] ; then
  553.             sed -e "/^####/  r ${target_makefile_frag}" ${Makefile} > Makefile.tem
  554.         else
  555.             mv ${Makefile} Makefile.tem
  556.             target_makefile_frag=
  557.         fi
  558.         ;;
  559.     esac
  560.     # real copy now in Makefile.tem
  561.  
  562.     # prepend warning about editting, and a bunch of variables.
  563.     cat > ${Makefile} <<EOF
  564. # ${NO_EDIT}
  565. host_alias = ${host_alias}
  566. host_cpu = ${host_cpu}
  567. host_vendor = ${host_vendor}
  568. host_os = ${host_os}
  569. target_alias = ${target_alias}
  570. target_cpu = ${target_cpu}
  571. target_vendor = ${target_vendor}
  572. target_os = ${target_os}
  573. target_makefile_frag = ${target_makefile_frag}
  574. host_makefile_frag = ${host_makefile_frag}
  575. site_makefile_frag = ${site_makefile_frag}
  576. links = ${configlinks}
  577. VPATH = ${srcdir}
  578. EOF
  579.  
  580.     # fixme: this shouldn't be in configure.
  581.     # Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
  582.     case "${host_alias}" in
  583.     "${target_alias}")
  584.         tooldir="\$(libdir)"
  585.         echo "ALL=all.internal" >> ${Makefile}
  586.         ;;
  587.     *)
  588.         echo "CROSS=-DCROSS_COMPILE" >> ${Makefile}
  589.         echo "ALL=all.cross" >> ${Makefile}
  590.         case "${program_prefix}" in
  591.         "")    program_prefix=${target_alias}- ;;
  592.         *)    ;;
  593.         esac
  594.  
  595.         tooldir="\$(libdir)/${target_alias}"
  596.         ;;
  597.     esac
  598.  
  599.     # reset prefix, exec_prefix, srcdir, SUBDIRS, NONSUBDIRS, remove any form
  600.     # feeds.
  601.     sed -e "s:^prefix[     ]*=.*$:prefix = ${prefix}:" \
  602.         -e "s:^exec_prefix[     ]*=.*$:exec_prefix = ${exec_prefix}:" \
  603.         -e "s:^srcdir[     ]*=.*$:srcdir = ${srcdir}:" \
  604.         -e "s:^SUBDIRS[     ]*=.*$:SUBDIRS = ${configdirs}:" \
  605.         -e "s:^NONSUBDIRS[     ]*=.*$:NONSUBDIRS = ${noconfigdirs}:" \
  606.         -e "s/ //" \
  607.         -e "s:^program_prefix[     ]*=.*$:program_prefix = ${program_prefix}:" \
  608.         -e "s:^tooldir[     ]*=.*$:tooldir = ${tooldir}:" \
  609.         Makefile.tem >> ${Makefile}
  610.     # final copy now in ${Makefile}
  611.  
  612.     rm Makefile.tem
  613.  
  614.     if [ -n "${verbose}" -o -z "${silent}" ] ; then
  615.         case "${host_makefile_frag}" in
  616.         "") using= ;;
  617.         *) using="and \"${host_makefile_frag}\"" ;;
  618.         esac
  619.  
  620.         case "${target_makefile_frag}" in
  621.         "") ;;
  622.         *) using="${using} and \"${target_makefile_frag}\"" ;;
  623.         esac
  624.  
  625.         case "${site_makefile_frag}" in
  626.         "") ;;
  627.         *) using="${using} and \"${site_makefile_frag}\"" ;;
  628.         esac
  629.  
  630.         echo "Created \"${Makefile}\" in" ${PWD} `echo "${using}" | sed 's/and/using/'`
  631.     fi
  632.  
  633.     . ${tmpfile}.pos
  634.  
  635.     # describe the chosen configuration in config.status.
  636.     # Make that file a shellscript which will reestablish
  637.     # the same configuration.  Used in Makefiles to rebuild
  638.     # Makefiles.
  639.  
  640.     case "${norecursion}" in
  641.     "") arguments="${arguments} -norecursion" ;;
  642.     *) ;;
  643.     esac
  644.  
  645.     echo "#!/bin/sh
  646. # ${NO_EDIT}
  647. # ${PWD} was configured as follows:
  648. ${progname}" ${arguments}  "
  649. # ${using}" > config.status
  650.     chmod a+x config.status
  651.     ;;
  652.  
  653. *)    rm -f ${Makefile} config.status ${links} ;;
  654. esac
  655.  
  656. # If there are subdirectories, then recur. 
  657. if [ -z "${norecursion}" -a -n "${configdirs}" ] ; then 
  658.     for configdir in ${configdirs} ; do
  659.         case "${verbose}" in
  660.         "") ;;
  661.         *) echo Configuring ${configdir}... ;;
  662.         esac
  663.  
  664.         if [ -d ${srcdir}/${configdir} ] ; then
  665.             case "${srcdir}" in
  666.             ".") ;;
  667.             *)
  668.                 if [ ! -d ./${configdir} ] ; then
  669.                     mkdir ./${configdir}
  670.                 fi
  671.                 ;;
  672.             esac
  673.  
  674.             POPDIR=${PWD}
  675.             cd ${configdir} 
  676.  
  677. ### figure out what to do with srcdir
  678.             case "${srcdir}" in
  679.             ".") newsrcdir=${srcdir} ;; # no -srcdir option.  We're building in place.
  680.             /*) # absolute path
  681.                 newsrcdir=${srcdir}/${configdir}
  682.                 srcdiroption="-srcdir=${newsrcdir}"
  683.                 ;;
  684.             *) # otherwise relative
  685.                 newsrcdir=../${srcdir}/${configdir}
  686.                 srcdiroption="-srcdir=${newsrcdir}"
  687.                 ;;
  688.             esac
  689.  
  690. ### check for guested configure, otherwise fix possibly relative progname
  691.             if [ -f ${newsrcdir}/configure ] ; then
  692.                 recprog=${newsrcdir}/configure
  693.             else
  694.                 case "${progname}" in
  695.                 /*)    recprog=${progname} ;;
  696.                 *)    recprog=../${progname} ;;
  697.                 esac
  698.             fi
  699.  
  700. ### The recursion line is here.
  701.             if ${recprog} -s ${host_alias} -target=${target_alias} \
  702.                 ${verbose} ${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
  703.                 ${srcdiroption} ${program_prefixoption} ${site_option} ${removing} ; then
  704.                 true
  705.             else
  706.                 exit 1
  707.             fi
  708.  
  709.             cd ${POPDIR}
  710.         else
  711.             case "${verbose}" in
  712.             "") ;;
  713.             *) echo Warning: source directory \"${srcdir}/${configdir}\" is missing. ;;
  714.             esac
  715.         fi
  716.     done
  717. fi
  718.  
  719. ### clean up.
  720.  
  721. # trap cmd above handles this now:
  722. #rm -f ${tmpfile}.com ${tmpfile}.tgt ${tmpfile}.hst ${tmpfile}.pos
  723.  
  724. exit 0
  725.  
  726. #
  727. # Local Variables:
  728. # fill-column: 131
  729. # End:
  730. #
  731.  
  732. # end of configure
  733.